func sync/atomic.StoreInt64

9 uses

	sync/atomic (current package)
		doc_64.go#L100: func StoreInt64(addr *int64, val int64)
		type.go#L109: func (x *Int64) Store(val int64) { StoreInt64(&x.v, val) }

	go.uber.org/atomic
		int64.go#L82: 	atomic.StoreInt64(&i.v, val)

	google.golang.org/grpc/internal/channelz
		funcs.go#L217: 	atomic.StoreInt64(&i.id, 0)

	google.golang.org/grpc/internal/idle
		idle.go#L257: 	atomic.StoreInt64(&m.lastCallEndTime, time.Now().UnixNano())

	google.golang.org/grpc/internal/transport
		http2_client.go#L1650: 		atomic.StoreInt64(&t.lastRead, time.Now().UnixNano())
		http2_client.go#L1658: 			atomic.StoreInt64(&t.lastRead, time.Now().UnixNano())
		http2_server.go#L332: 	atomic.StoreInt64(&t.lastRead, time.Now().UnixNano())
		http2_server.go#L678: 		atomic.StoreInt64(&t.lastRead, time.Now().UnixNano())